From 4767b309addf8f3c2f5e09f3f0dc9ea6f3a75698 Mon Sep 17 00:00:00 2001 From: "kaf24@scramble.cl.cam.ac.uk" Date: Thu, 20 Nov 2003 19:39:12 +0000 Subject: [PATCH] bitkeeper revision 1.619 (3fbd1860ZTk313gg7K24KrtLF0t_Vg) Makefile: Fix Python makefile to install the wrapper module in lib/python/ --- tools/xc/py/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/xc/py/Makefile b/tools/xc/py/Makefile index b6dcd8b15b..a58ef6ba77 100644 --- a/tools/xc/py/Makefile +++ b/tools/xc/py/Makefile @@ -3,7 +3,10 @@ all: ../lib/libxc.a python setup.py build install: - # How to install Xc.so ?? + mkdir -p ../../../../install/lib/python + for i in `find . -name 'Xc.so'` ; do \ + cp $$i ../../../../install/lib/python/`basename $$i` ; \ + done clean: rm -rf build -- 2.30.2